home *** CD-ROM | disk | FTP | other *** search
/ QuickTime VR Showcase / QuickTime VR Showcase.iso / 3rd Parties / Software / Apple / AMT 2.1 New Features Demo / SOURCES / oAudio_1_8.k < prev    next >
Encoding:
Text File  |  1996-12-21  |  18.2 KB  |  906 lines  |  [TEXT/MPS ]

  1. object oAudio_1_8 is cDefaultContainer
  2. with
  3.     Binder is oBinder;
  4.     Label is -1;
  5.     Items is [
  6.         oKeyboard_Volume__8_44,
  7.         oClick_Sound__Up__8_2,
  8.         oClick_Sound__down__8_3,
  9.         oAU_BCK1_PIC_8_14,
  10.         oArrow_Right_Yellow_Highligh_8_4,
  11.         oArrow_Left_Yellow_Highlight_8_5,
  12.         oExit_Yellow_Highlight_8_6,
  13.         oExplain_Yellow_Highlight_8_7,
  14.         oMenu_Yellow_Highlight_8_8,
  15.         oArrow_Left_Inverse_8_9,
  16.         oArrow_Right_Inverse_8_10,
  17.         oExit_Inverse_8_11,
  18.         oExplain_Inverse_8_12,
  19.         oMenu_Inverse_8_13,
  20.         oAU_FOA_MOV_8_26,
  21.         oAU_1ELE_PIC_8_28,
  22.         oAU_1EIG_PIC_8_27,
  23.         oAU_1SEV_PIC_8_32,
  24.         oAU_1SIX_PIC_8_33,
  25.         oAU_1FIV_PIC_8_29,
  26.         oAU_1FOU_PIC_8_30,
  27.         oAU_1THR_PIC_8_34,
  28.         oAU_1TWO_PIC_8_35,
  29.         oAU_1ONE_PIC_8_31,
  30.         oAU_MINUS_PIC_8_36,
  31.         oAU_PLUS_PIC_8_37,
  32.         oAU_STOP_PIC_8_38,
  33.         oAU_PLAY_PIC_8_25,
  34.         oAU_HLP1_PIC_8_39
  35.     ];
  36. end;
  37.  
  38.  
  39. object oKeyboard_Volume__8_44 is cKeyboardHandler
  40. with
  41.     Behavior is cDefaultBehavior
  42.     has
  43.         KeyDown(theTarget, theKey)
  44.         use
  45.             KeyMatch;
  46.             
  47.             do
  48.                 KeyMatch := theKey = '-';
  49.                 if KeyMatch then
  50.                     theTarget.DoDefaultMethod := false;
  51.                 
  52.                     oSoundVolume.StepIndexBy(-1);
  53.                 end;
  54.                 KeyMatch := theKey = '=';
  55.                 if KeyMatch then
  56.                     theTarget.DoDefaultMethod := false;
  57.                 
  58.                     oSoundVolume.StepIndexBy(1);
  59.                 end;
  60.                 KeyMatch := theKey = '+';
  61.                 if KeyMatch then
  62.                     theTarget.DoDefaultMethod := false;
  63.                 
  64.                     oSoundVolume.StepIndexBy(1);
  65.                 end;
  66.             end;
  67.         
  68.     with
  69.         Enabled is true; Shown is false; 
  70.         X is 30; Y is 24; Width is 0; Height is 0;
  71.     end;
  72. end;
  73.  
  74.  
  75. object oClick_Sound__Up__8_2 is cSoundHandler
  76. with
  77.     Supplier is oS3_2clk_WAV;
  78.     Behavior is cDefaultBehavior
  79.     has
  80.     with
  81.         Enabled is true; Shown is true; 
  82.         X is 247; Y is 128; Width is 32; Height is 24;
  83.     end;
  84. end;
  85.  
  86.  
  87. object oClick_Sound__down__8_3 is cSoundHandler
  88. with
  89.     Supplier is oS3_clk_WAV;
  90.     Behavior is cDefaultBehavior
  91.     has
  92.     with
  93.         Enabled is true; Shown is true; 
  94.         X is 304; Y is 228; Width is 32; Height is 24;
  95.     end;
  96. end;
  97.  
  98.  
  99. object oAU_BCK1_PIC_8_14 is cPictureHandler
  100. with
  101.     Duration is -1;
  102.     Supplier is oAU_BCK1_PIC;
  103.     Behavior is cDefaultBehavior
  104.     has
  105.     with
  106.         Enabled is false; Shown is true; 
  107.         X is 0; Y is 0; Width is 640; Height is 480;
  108.     end;
  109. end;
  110.  
  111.  
  112. object oArrow_Right_Yellow_Highligh_8_4 is cPictureHandler
  113. with
  114.     Duration is -1;
  115.     Supplier is oS2_ALYH_PIC;
  116.     Behavior is cDefaultBehavior
  117.     has
  118.         Offscreen(theTarget)
  119.             do
  120.                 theTarget.Show(false);
  121.             end;
  122.         
  123.         MouseEnter(theTarget, theX, theY)
  124.             do
  125.                 theTarget.Show(true);
  126.             end;
  127.         
  128.         MouseLeave(theTarget, theX, theY)
  129.             do
  130.                 theTarget.Show(false);
  131.             end;
  132.         
  133.         MouseDown(theTarget, theX, theY)
  134.             do
  135.                 theTarget.Show(false);
  136.                 oArrow_Right_Inverse_8_10.Show(true);
  137.                 oBinder.Refresh();
  138.                 oClick_Sound__down__8_3.Run(true);
  139.                 -- Turn off the spining cursor, if there is one
  140.                 if oBinder.MouseSpin<>void then
  141.                     if oBinder.MouseSpin.IsRunning() then
  142.                         oBinder.MouseSpin.Stop();
  143.                     end;
  144.                     oBinder.MouseSpin := void;
  145.                 end;
  146.                 theTarget.Container.OverrideCursor := true;
  147.                 oBinder.MouseSpin := oHandSpin;
  148.                 if (oBinder.MouseSpin @ 1).Data=void then
  149.                     oBinder.MouseSpin.EachUp(Load);
  150.                 end;
  151.                 if not oBinder.MouseSpin.IsRunning() then
  152.                     oBinder.MouseSpin.Start();
  153.                 end;
  154.             end;
  155.         
  156.         MouseUp(theTarget, theX, theY)
  157.             do
  158.                 theTarget.Show(true);
  159.                 oArrow_Right_Inverse_8_10.Show(false);
  160.                 -- Turn off the spining cursor, if there is one
  161.                 if oBinder.MouseSpin<>void then
  162.                     if oBinder.MouseSpin.IsRunning() then
  163.                         oBinder.MouseSpin.Stop();
  164.                     end;
  165.                     oBinder.MouseSpin := void;
  166.                 end;
  167.                 theTarget.Container.OverrideCursor := false;
  168.                 oBinder.Refresh();
  169.                 oClick_Sound__Up__8_2.Run(true);
  170.                 oBinder.Goto(oAudio_2_9);
  171.                 oBinder.SetTransition(oWipeRight, 30);
  172.             end;
  173.         
  174.     with
  175.         Enabled is true; Shown is true; 
  176.         X is 473; Y is 426; Width is 55; Height is 54;
  177.     end;
  178. end;
  179.  
  180.  
  181. object oArrow_Left_Yellow_Highlight_8_5 is cPictureHandler
  182. with
  183.     Duration is -1;
  184.     Supplier is oS2_ARYH_PIC;
  185.     Behavior is cDefaultBehavior
  186.     has
  187.         Offscreen(theTarget)
  188.             do
  189.                 theTarget.Show(false);
  190.             end;
  191.         
  192.         MouseEnter(theTarget, theX, theY)
  193.             do
  194.                 theTarget.Show(true);
  195.             end;
  196.         
  197.         MouseLeave(theTarget, theX, theY)
  198.             do
  199.                 theTarget.Show(false);
  200.             end;
  201.         
  202.         MouseDown(theTarget, theX, theY)
  203.             do
  204.                 theTarget.Show(false);
  205.                 oArrow_Left_Inverse_8_9.Show(true);
  206.                 -- Turn off the spining cursor, if there is one
  207.                 if oBinder.MouseSpin<>void then
  208.                     if oBinder.MouseSpin.IsRunning() then
  209.                         oBinder.MouseSpin.Stop();
  210.                     end;
  211.                     oBinder.MouseSpin := void;
  212.                 end;
  213.                 theTarget.Container.OverrideCursor := true;
  214.                 oBinder.MouseSpin := oHandSpin;
  215.                 if (oBinder.MouseSpin @ 1).Data=void then
  216.                     oBinder.MouseSpin.EachUp(Load);
  217.                 end;
  218.                 if not oBinder.MouseSpin.IsRunning() then
  219.                     oBinder.MouseSpin.Start();
  220.                 end;
  221.                 oBinder.Refresh();
  222.                 oClick_Sound__down__8_3.Run(true);
  223.             end;
  224.         
  225.         MouseUp(theTarget, theX, theY)
  226.             do
  227.                 theTarget.Show(true);
  228.                 oArrow_Left_Inverse_8_9.Show(false);
  229.                 oClick_Sound__Up__8_2.Run(true);
  230.                 -- Turn off the spining cursor, if there is one
  231.                 if oBinder.MouseSpin<>void then
  232.                     if oBinder.MouseSpin.IsRunning() then
  233.                         oBinder.MouseSpin.Stop();
  234.                     end;
  235.                     oBinder.MouseSpin := void;
  236.                 end;
  237.                 theTarget.Container.OverrideCursor := false;
  238.                 oBinder.Refresh();
  239.                 oBinder.Goto(oMain_Menu_1);
  240.                 oBinder.SetTransition(oIrisOpen, 30);
  241.             end;
  242.         
  243.     with
  244.         Enabled is true; Shown is true; 
  245.         X is 377; Y is 426; Width is 60; Height is 54;
  246.     end;
  247. end;
  248.  
  249.  
  250. object oExit_Yellow_Highlight_8_6 is cPictureHandler
  251. with
  252.     Duration is -1;
  253.     Supplier is oS2_ETYH_PIC;
  254.     Behavior is cDefaultBehavior
  255.     has
  256.         Offscreen(theTarget)
  257.             do
  258.                 theTarget.Show(false);
  259.             end;
  260.         
  261.         MouseEnter(theTarget, theX, theY)
  262.             do
  263.                 theTarget.Show(true);
  264.             end;
  265.         
  266.         MouseLeave(theTarget, theX, theY)
  267.             do
  268.                 theTarget.Show(false);
  269.             end;
  270.         
  271.         MouseDown(theTarget, theX, theY)
  272.             do
  273.                 theTarget.Show(false);
  274.                 oExit_Inverse_8_11.Show(true);
  275.                 -- Turn off the spining cursor, if there is one
  276.                 if oBinder.MouseSpin<>void then
  277.                     if oBinder.MouseSpin.IsRunning() then
  278.                         oBinder.MouseSpin.Stop();
  279.                     end;
  280.                     oBinder.MouseSpin := void;
  281.                 end;
  282.                 theTarget.Container.OverrideCursor := true;
  283.                 oBinder.MouseSpin := oHandSpin;
  284.                 if (oBinder.MouseSpin @ 1).Data=void then
  285.                     oBinder.MouseSpin.EachUp(Load);
  286.                 end;
  287.                 if not oBinder.MouseSpin.IsRunning() then
  288.                     oBinder.MouseSpin.Start();
  289.                 end;
  290.                 oBinder.Refresh();
  291.                 oClick_Sound__down__8_3.Run(true);
  292.             end;
  293.         
  294.         MouseUp(theTarget, theX, theY)
  295.             do
  296.                 theTarget.Show(true);
  297.                 oExit_Inverse_8_11.Show(false);
  298.                 -- Turn off the spining cursor, if there is one
  299.                 if oBinder.MouseSpin<>void then
  300.                     if oBinder.MouseSpin.IsRunning() then
  301.                         oBinder.MouseSpin.Stop();
  302.                     end;
  303.                     oBinder.MouseSpin := void;
  304.                 end;
  305.                 theTarget.Container.OverrideCursor := false;
  306.                 oBinder.Refresh();
  307.                 oClick_Sound__Up__8_2.Run(true);
  308.                 oBinder.Quit();
  309.             end;
  310.         
  311.     with
  312.         Enabled is true; Shown is true; 
  313.         X is 528; Y is 426; Width is 111; Height is 54;
  314.     end;
  315. end;
  316.  
  317.  
  318. object oExplain_Yellow_Highlight_8_7 is cPictureHandler
  319. with
  320.     Duration is -1;
  321.     Supplier is oS2_EXYH_PIC;
  322.     Behavior is cDefaultBehavior
  323.     has
  324.         Offscreen(theTarget)
  325.             do
  326.                 theTarget.Show(false);
  327.             end;
  328.         
  329.         MouseEnter(theTarget, theX, theY)
  330.             do
  331.                 theTarget.Show(true);
  332.                 -- Turn off the spining cursor, if there is one
  333.                 if oBinder.MouseSpin<>void then
  334.                     if oBinder.MouseSpin.IsRunning() then
  335.                         oBinder.MouseSpin.Stop();
  336.                     end;
  337.                     oBinder.MouseSpin := void;
  338.                 end;
  339.                 theTarget.Container.OverrideCursor := true;
  340.                 if oQueryCursor=void then
  341.                     oQueryCursor.Load();
  342.                 end;
  343.                 oQueryCursor.Set();
  344.             end;
  345.         
  346.         MouseLeave(theTarget, theX, theY)
  347.             do
  348.                 theTarget.Show(false);
  349.                 -- Turn off the spining cursor, if there is one
  350.                 if oBinder.MouseSpin<>void then
  351.                     if oBinder.MouseSpin.IsRunning() then
  352.                         oBinder.MouseSpin.Stop();
  353.                     end;
  354.                     oBinder.MouseSpin := void;
  355.                 end;
  356.                 theTarget.Container.OverrideCursor := false;
  357.             end;
  358.         
  359.         MouseDown(theTarget, theX, theY)
  360.             do
  361.                 theTarget.Show(false);
  362.                 oExplain_Inverse_8_12.Show(true);
  363.                 oBinder.Refresh();
  364.                 oClick_Sound__down__8_3.Run(true);
  365.                 oAU_HLP1_PIC_8_39.Show(not oAU_HLP1_PIC_8_39.IsShown());
  366.                 oAU_1ELE_PIC_8_28.Enable(not oAU_1ELE_PIC_8_28.IsEnabled());
  367.                 oAU_1EIG_PIC_8_27.Enable(not oAU_1EIG_PIC_8_27.IsEnabled());
  368.                 oAU_1SEV_PIC_8_32.Enable(not oAU_1SEV_PIC_8_32.IsEnabled());
  369.                 oAU_1SIX_PIC_8_33.Enable(not oAU_1SIX_PIC_8_33.IsEnabled());
  370.                 oAU_1FIV_PIC_8_29.Enable(not oAU_1FIV_PIC_8_29.IsEnabled());
  371.                 oAU_1FOU_PIC_8_30.Enable(not oAU_1FOU_PIC_8_30.IsEnabled());
  372.                 oAU_1THR_PIC_8_34.Enable(not oAU_1THR_PIC_8_34.IsEnabled());
  373.                 oAU_1TWO_PIC_8_35.Enable(not oAU_1TWO_PIC_8_35.IsEnabled());
  374.                 oAU_1ONE_PIC_8_31.Enable(not oAU_1ONE_PIC_8_31.IsEnabled());
  375.                 oAU_MINUS_PIC_8_36.Enable(not oAU_MINUS_PIC_8_36.IsEnabled());
  376.                 oAU_STOP_PIC_8_38.Enable(not oAU_STOP_PIC_8_38.IsEnabled());
  377.                 oAU_PLAY_PIC_8_25.Enable(not oAU_PLAY_PIC_8_25.IsEnabled());
  378.             end;
  379.         
  380.         MouseUp(theTarget, theX, theY)
  381.             do
  382.                 theTarget.Show(true);
  383.                 oExplain_Inverse_8_12.Show(false);
  384.                 oBinder.Refresh();
  385.                 oClick_Sound__Up__8_2.Run(true);
  386.             end;
  387.         
  388.     with
  389.         Enabled is true; Shown is true; 
  390.         X is 289; Y is 427; Width is 87; Height is 53;
  391.     end;
  392. end;
  393.  
  394.  
  395. object oMenu_Yellow_Highlight_8_8 is cPictureHandler
  396. with
  397.     Duration is -1;
  398.     Supplier is oS2_MNUYH_PIC;
  399.     Behavior is cDefaultBehavior
  400.     has
  401.         Offscreen(theTarget)
  402.             do
  403.                 theTarget.Show(false);
  404.             end;
  405.         
  406.         MouseEnter(theTarget, theX, theY)
  407.             do
  408.                 theTarget.Show(true);
  409.             end;
  410.         
  411.         MouseLeave(theTarget, theX, theY)
  412.             do
  413.                 theTarget.Show(false);
  414.             end;
  415.         
  416.         MouseDown(theTarget, theX, theY)
  417.             do
  418.                 theTarget.Show(false);
  419.                 oMenu_Inverse_8_13.Show(true);
  420.                 -- Turn off the spining cursor, if there is one
  421.                 if oBinder.MouseSpin<>void then
  422.                     if oBinder.MouseSpin.IsRunning() then
  423.                         oBinder.MouseSpin.Stop();
  424.                     end;
  425.                     oBinder.MouseSpin := void;
  426.                 end;
  427.                 theTarget.Container.OverrideCursor := true;
  428.                 oBinder.MouseSpin := oHandSpin;
  429.                 if (oBinder.MouseSpin @ 1).Data=void then
  430.                     oBinder.MouseSpin.EachUp(Load);
  431.                 end;
  432.                 if not oBinder.MouseSpin.IsRunning() then
  433.                     oBinder.MouseSpin.Start();
  434.                 end;
  435.                 oBinder.Refresh();
  436.                 oClick_Sound__down__8_3.Run(true);
  437.             end;
  438.         
  439.         MouseUp(theTarget, theX, theY)
  440.             do
  441.                 theTarget.Show(true);
  442.                 oMenu_Inverse_8_13.Show(false);
  443.                 -- Turn off the spining cursor, if there is one
  444.                 if oBinder.MouseSpin<>void then
  445.                     if oBinder.MouseSpin.IsRunning() then
  446.                         oBinder.MouseSpin.Stop();
  447.                     end;
  448.                     oBinder.MouseSpin := void;
  449.                 end;
  450.                 theTarget.Container.OverrideCursor := false;
  451.                 oBinder.Refresh();
  452.                 oClick_Sound__Up__8_2.Run(true);
  453.                 oBinder.Goto(oMain_Menu_1);
  454.             end;
  455.         
  456.     with
  457.         Enabled is true; Shown is true; 
  458.         X is 163; Y is 427; Width is 126; Height is 53;
  459.     end;
  460. end;
  461.  
  462.  
  463. object oArrow_Left_Inverse_8_9 is cPictureHandler
  464. with
  465.     Duration is -1;
  466.     Supplier is oS2_ALI_PIC;
  467.     Behavior is cDefaultBehavior
  468.     has
  469.         Offscreen(theTarget)
  470.             do
  471.                 theTarget.Show(false);
  472.                 theTarget.Enable(false);
  473.             end;
  474.         
  475.     with
  476.         Enabled is true; Shown is true; 
  477.         X is 381; Y is 441; Width is 51; Height is 40;
  478.     end;
  479. end;
  480.  
  481.  
  482. object oArrow_Right_Inverse_8_10 is cPictureHandler
  483. with
  484.     Duration is -1;
  485.     Supplier is oS2_ARI_PIC;
  486.     Behavior is cDefaultBehavior
  487.     has
  488.         Offscreen(theTarget)
  489.             do
  490.                 theTarget.Show(false);
  491.                 theTarget.Enable(false);
  492.             end;
  493.         
  494.     with
  495.         Enabled is true; Shown is true; 
  496.         X is 477; Y is 438; Width is 50; Height is 42;
  497.     end;
  498. end;
  499.  
  500.  
  501. object oExit_Inverse_8_11 is cPictureHandler
  502. with
  503.     Duration is -1;
  504.     Supplier is oS2_ETI_PIC;
  505.     Behavior is cDefaultBehavior
  506.     has
  507.         Offscreen(theTarget)
  508.             do
  509.                 theTarget.Show(false);
  510.                 theTarget.Enable(false);
  511.             end;
  512.         
  513.     with
  514.         Enabled is true; Shown is true; 
  515.         X is 528; Y is 439; Width is 112; Height is 42;
  516.     end;
  517. end;
  518.  
  519.  
  520. object oExplain_Inverse_8_12 is cPictureHandler
  521. with
  522.     Duration is -1;
  523.     Supplier is oS2_EXI_PIC;
  524.     Behavior is cDefaultBehavior
  525.     has
  526.         Offscreen(theTarget)
  527.             do
  528.                 theTarget.Show(false);
  529.                 theTarget.Enable(false);
  530.             end;
  531.         
  532.     with
  533.         Enabled is true; Shown is true; 
  534.         X is 291; Y is 438; Width is 87; Height is 43;
  535.     end;
  536. end;
  537.  
  538.  
  539. object oMenu_Inverse_8_13 is cPictureHandler
  540. with
  541.     Duration is -1;
  542.     Supplier is oS2_MNUI_PIC;
  543.     Behavior is cDefaultBehavior
  544.     has
  545.         Offscreen(theTarget)
  546.             do
  547.                 theTarget.Show(false);
  548.                 theTarget.Enable(false);
  549.             end;
  550.         
  551.     with
  552.         Enabled is true; Shown is true; 
  553.         X is 167; Y is 438; Width is 123; Height is 43;
  554.     end;
  555. end;
  556.  
  557.  
  558. object oAU_FOA_MOV_8_26 is cMovieHandler
  559. with
  560.     Supplier is oAU_FOA_MOV;
  561.     Behavior is cDefaultBehavior
  562.     has
  563.     with
  564.         Enabled is true; Shown is true; 
  565.         X is 356; Y is 125; Width is 0; Height is 0;
  566.     end;
  567. end;
  568.  
  569.  
  570. object oAU_1ELE_PIC_8_28 is cPictureHandler
  571. with
  572.     Duration is -1;
  573.     Supplier is oAU_1ELE_PIC;
  574.     Behavior is cDefaultBehavior
  575.     has
  576.         MouseUp(theTarget, theX, theY)
  577.             do
  578.                 theTarget.Show(false);
  579.                 oBinder.Refresh();
  580.             end;
  581.         
  582.         MouseDown(theTarget, theX, theY)
  583.             do
  584.                 theTarget.Show(true);
  585.             end;
  586.         
  587.     with
  588.         Enabled is true; Shown is false; 
  589.         X is 506; Y is 252; Width is 30; Height is 39;
  590.     end;
  591. end;
  592.  
  593.  
  594. object oAU_1EIG_PIC_8_27 is cPictureHandler
  595. with
  596.     Duration is -1;
  597.     Supplier is oAU_1EIG_PIC;
  598.     Behavior is cDefaultBehavior
  599.     has
  600.         MouseUp(theTarget, theX, theY)
  601.             do
  602.                 oSoundVolume.SetIndex(8);
  603.                 theTarget.Show(false);
  604.                 oBinder.Refresh();
  605.             end;
  606.         
  607.         MouseDown(theTarget, theX, theY)
  608.             do
  609.                 theTarget.Show(true);
  610.             end;
  611.         
  612.     with
  613.         Enabled is true; Shown is false; 
  614.         X is 476; Y is 252; Width is 30; Height is 39;
  615.     end;
  616. end;
  617.  
  618.  
  619. object oAU_1SEV_PIC_8_32 is cPictureHandler
  620. with
  621.     Duration is -1;
  622.     Supplier is oAU_1SEV_PIC;
  623.     Behavior is cDefaultBehavior
  624.     has
  625.         MouseUp(theTarget, theX, theY)
  626.             do
  627.                 oSoundVolume.SetIndex(7);
  628.                 theTarget.Show(false);
  629.                 oBinder.Refresh();
  630.             end;
  631.         
  632.         MouseDown(theTarget, theX, theY)
  633.             do
  634.                 theTarget.Show(true);
  635.             end;
  636.         
  637.     with
  638.         Enabled is true; Shown is false; 
  639.         X is 445; Y is 252; Width is 30; Height is 39;
  640.     end;
  641. end;
  642.  
  643.  
  644. object oAU_1SIX_PIC_8_33 is cPictureHandler
  645. with
  646.     Duration is -1;
  647.     Supplier is oAU_1SIX_PIC;
  648.     Behavior is cDefaultBehavior
  649.     has
  650.         MouseUp(theTarget, theX, theY)
  651.             do
  652.                 oSoundVolume.SetIndex(6);
  653.                 theTarget.Show(false);
  654.                 oBinder.Refresh();
  655.             end;
  656.         
  657.         MouseDown(theTarget, theX, theY)
  658.             do
  659.                 theTarget.Show(true);
  660.             end;
  661.         
  662.     with
  663.         Enabled is true; Shown is false; 
  664.         X is 415; Y is 252; Width is 30; Height is 39;
  665.     end;
  666. end;
  667.  
  668.  
  669. object oAU_1FIV_PIC_8_29 is cPictureHandler
  670. with
  671.     Duration is -1;
  672.     Supplier is oAU_1FIV_PIC;
  673.     Behavior is cDefaultBehavior
  674.     has
  675.         MouseUp(theTarget, theX, theY)
  676.             do
  677.                 oSoundVolume.SetIndex(5);
  678.                 theTarget.Show(false);
  679.                 oBinder.Refresh();
  680.             end;
  681.         
  682.         MouseDown(theTarget, theX, theY)
  683.             do
  684.                 theTarget.Show(true);
  685.             end;
  686.         
  687.     with
  688.         Enabled is true; Shown is false; 
  689.         X is 385; Y is 252; Width is 30; Height is 39;
  690.     end;
  691. end;
  692.  
  693.  
  694. object oAU_1FOU_PIC_8_30 is cPictureHandler
  695. with
  696.     Duration is -1;
  697.     Supplier is oAU_1FOU_PIC;
  698.     Behavior is cDefaultBehavior
  699.     has
  700.         MouseUp(theTarget, theX, theY)
  701.             do
  702.                 oSoundVolume.SetIndex(4);
  703.                 theTarget.Show(false);
  704.                 oBinder.Refresh();
  705.             end;
  706.         
  707.         MouseDown(theTarget, theX, theY)
  708.             do
  709.                 theTarget.Show(true);
  710.             end;
  711.         
  712.     with
  713.         Enabled is true; Shown is false; 
  714.         X is 355; Y is 252; Width is 30; Height is 39;
  715.     end;
  716. end;
  717.  
  718.  
  719. object oAU_1THR_PIC_8_34 is cPictureHandler
  720. with
  721.     Duration is -1;
  722.     Supplier is oAU_1THR_PIC;
  723.     Behavior is cDefaultBehavior
  724.     has
  725.         MouseUp(theTarget, theX, theY)
  726.             do
  727.                 oSoundVolume.SetIndex(3);
  728.                 theTarget.Show(false);
  729.                 oBinder.Refresh();
  730.             end;
  731.         
  732.         MouseDown(theTarget, theX, theY)
  733.             do
  734.                 theTarget.Show(true);
  735.             end;
  736.         
  737.     with
  738.         Enabled is true; Shown is false; 
  739.         X is 325; Y is 252; Width is 30; Height is 39;
  740.     end;
  741. end;
  742.  
  743.  
  744. object oAU_1TWO_PIC_8_35 is cPictureHandler
  745. with
  746.     Duration is -1;
  747.     Supplier is oAU_1TWO_PIC;
  748.     Behavior is cDefaultBehavior
  749.     has
  750.         MouseUp(theTarget, theX, theY)
  751.             do
  752.                 oSoundVolume.SetIndex(2);
  753.                 theTarget.Show(false);
  754.                 oBinder.Refresh();
  755.             end;
  756.         
  757.         MouseDown(theTarget, theX, theY)
  758.             do
  759.                 theTarget.Show(true);
  760.             end;
  761.         
  762.     with
  763.         Enabled is true; Shown is false; 
  764.         X is 295; Y is 252; Width is 30; Height is 39;
  765.     end;
  766. end;
  767.  
  768.  
  769. object oAU_1ONE_PIC_8_31 is cPictureHandler
  770. with
  771.     Duration is -1;
  772.     Supplier is oAU_1ONE_PIC;
  773.     Behavior is cDefaultBehavior
  774.     has
  775.         MouseUp(theTarget, theX, theY)
  776.             do
  777.                 oSoundVolume.SetIndex(1);
  778.                 theTarget.Show(false);
  779.                 oBinder.Refresh();
  780.             end;
  781.         
  782.         MouseDown(theTarget, theX, theY)
  783.             do
  784.                 theTarget.Show(true);
  785.             end;
  786.         
  787.     with
  788.         Enabled is true; Shown is false; 
  789.         X is 265; Y is 252; Width is 30; Height is 39;
  790.     end;
  791. end;
  792.  
  793.  
  794. object oAU_MINUS_PIC_8_36 is cPictureHandler
  795. with
  796.     Duration is -1;
  797.     Supplier is oAU_MINUS_PIC;
  798.     Behavior is cDefaultBehavior
  799.     has
  800.         MouseUp(theTarget, theX, theY)
  801.             do
  802.                 oSoundVolume.StepIndexBy(-1);
  803.                 theTarget.Show(false);
  804.                 oBinder.Refresh();
  805.             end;
  806.         
  807.         MouseDown(theTarget, theX, theY)
  808.             do
  809.                 theTarget.Show(true);
  810.             end;
  811.         
  812.     with
  813.         Enabled is true; Shown is false; 
  814.         X is 265; Y is 301; Width is 31; Height is 38;
  815.     end;
  816. end;
  817.  
  818.  
  819. object oAU_PLUS_PIC_8_37 is cPictureHandler
  820. with
  821.     Duration is -1;
  822.     Supplier is oAU_PLUS_PIC;
  823.     Behavior is cDefaultBehavior
  824.     has
  825.         MouseUp(theTarget, theX, theY)
  826.             do
  827.                 oSoundVolume.StepIndexBy(1);
  828.                 theTarget.Show(false);
  829.                 oBinder.Refresh();
  830.             end;
  831.         
  832.         MouseDown(theTarget, theX, theY)
  833.             do
  834.                 theTarget.Show(true);
  835.             end;
  836.         
  837.     with
  838.         Enabled is true; Shown is false; 
  839.         X is 507; Y is 301; Width is 30; Height is 38;
  840.     end;
  841. end;
  842.  
  843.  
  844. object oAU_STOP_PIC_8_38 is cPictureHandler
  845. with
  846.     Duration is -1;
  847.     Supplier is oAU_STOP_PIC;
  848.     Behavior is cDefaultBehavior
  849.     has
  850.         MouseDown(theTarget, theX, theY)
  851.             do
  852.                 theTarget.Show(true);
  853.                 oAU_FOA_MOV_8_26.Run(false);
  854.             end;
  855.         
  856.         MouseUp(theTarget, theX, theY)
  857.             do
  858.                 theTarget.Show(false);
  859.                 oBinder.Refresh();
  860.             end;
  861.         
  862.     with
  863.         Enabled is true; Shown is false; 
  864.         X is 400; Y is 301; Width is 106; Height is 38;
  865.     end;
  866. end;
  867.  
  868.  
  869. object oAU_PLAY_PIC_8_25 is cPictureHandler
  870. with
  871.     Duration is -1;
  872.     Supplier is oAU_PLAY_PIC;
  873.     Behavior is cDefaultBehavior
  874.     has
  875.         MouseDown(theTarget, theX, theY)
  876.             do
  877.                 theTarget.Show(true);
  878.             end;
  879.         
  880.         MouseUp(theTarget, theX, theY)
  881.             do
  882.                 theTarget.Show(false);
  883.                 oBinder.Refresh();
  884.                 oAU_FOA_MOV_8_26.Run(true);
  885.             end;
  886.         
  887.     with
  888.         Enabled is true; Shown is false; 
  889.         X is 295; Y is 301; Width is 105; Height is 38;
  890.     end;
  891. end;
  892.  
  893.  
  894. object oAU_HLP1_PIC_8_39 is cPictureHandler
  895. with
  896.     Duration is -1;
  897.     Supplier is oAU_HLP1_PIC;
  898.     Behavior is cDefaultBehavior
  899.     has
  900.     with
  901.         Enabled is false; Shown is false; 
  902.         X is 168; Y is 0; Width is 472; Height is 425;
  903.     end;
  904. end;
  905.  
  906.